home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / rpc_sadmin.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  86 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10229);
  10.  script_bugtraq_id(8615, 866);
  11.  script_version ("$Revision: 1.13 $");
  12.  script_cve_id("CVE-1999-0977");
  13.  
  14.  name["english"] = "sadmin service";
  15.  name["francais"] = "Service sadmin";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. The sadmin RPC service is running. 
  20. There is a bug in Solaris versions of this service that allow an intruder to
  21. execute arbitrary commands on your system.  
  22.  
  23.  
  24. Solution : disable this service
  25. Risk factor : High";
  26.  
  27.  
  28.  desc["francais"] = "
  29. Le service RPC sadmin tourne.
  30. Il y a un bug dans certaines versions
  31. de ce service qui permettent α un pirate
  32. d'executer des commandes arbitraires sur
  33. votre systΦme.
  34.  
  35.  
  36. Solution : dΘsactivez ce service
  37. Facteur de risque : ElevΘ";
  38.  
  39.  
  40.  script_description(english:desc["english"], francais:desc["francais"]);
  41.  
  42.  summary["english"] = "checks the presence of a RPC service";
  43.  summary["francais"] = "vΘrifie la prΘsence d'un service RPC";
  44.  script_summary(english:summary["english"], francais:summary["francais"]);
  45.  
  46.  script_category(ACT_GATHER_INFO);
  47.  
  48.  
  49.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  50.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  51.  family["english"] = "RPC"; 
  52.  family["francais"] = "RPC";
  53.  script_family(english:family["english"], francais:family["francais"]);
  54.  script_dependencie("rpc_portmap.nasl");
  55.  if ( ! defined_func("bn_random") ) 
  56.         script_dependencie("rpc_portmap.nasl");
  57.  else
  58.         script_dependencie("rpc_portmap.nasl", "solaris7_116456.nasl", "solaris7_x86_116457.nasl", "solaris8_116455.nasl", "solaris8_x86_116442.nasl", "solaris9_116453.nasl", "solaris9_x86_116454.nasl")
  59. ;
  60.  
  61.  exit(0);
  62. }
  63.  
  64. #
  65. # The script code starts here
  66. #
  67.  
  68.  
  69. include("misc_func.inc");
  70.  
  71. if ( get_kb_item("BID-8615") ) exit(0);
  72.  
  73. RPC_PROG = 100232;
  74. tcp = 0;
  75. port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_UDP);
  76. if(!port){
  77.     port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_TCP);
  78.     tcp = 1;
  79.     }
  80.  
  81. if(port)
  82. {
  83.  if(tcp)security_hole(port);
  84.  else security_hole(port, protocol:"udp");
  85. }
  86.